home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
Quill
/
Source
/
ToolWindowProxy.h
< prev
next >
Wrap
Text File
|
1996-12-25
|
1KB
|
43 lines
/*
* File: ToolWindowProxy.h
* Summary: A stand in for TToolWindow that behaves better when it's being edited.
* Written by: Jesse Jones
*
* Copyright ゥ 1996 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 12/24/96 JDJ Created
*/
#pragma once
#include "WindowProxy.h"
// ===================================================================================
// class CToolWindowProxy
// ===================================================================================
class CToolWindowProxy : public CWindowProxy {
typedef CWindowProxy Inherited;
//-----------------------------------
// Initialization/Destruction
//
public:
virtual ~CToolWindowProxy();
CToolWindowProxy(const SWindowInfo& info, MCommander* superCommander);
protected:
CToolWindowProxy();
//-----------------------------------
// TReanimator Support
//
public:
static MReanimatable* Create(MReanimatable* parent);
};